From: Lars Ingebrigtsen Date: Wed, 13 Oct 2021 16:34:58 +0000 (+0200) Subject: Remove some compat code from python.el X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~16^2~3291^2~974 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=93b40da8e1c0ef418c716ee62b8e8fdecc16cd44;p=emacs.git Remove some compat code from python.el * lisp/progmodes/python.el (python-shell-font-lock-post-command-hook): Remove Emacs 24.3 and earlier compat code. --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index f1dab76a81b..75aae23051a 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -2731,11 +2731,7 @@ goes wrong and syntax highlighting in the shell gets messed up." (point-max)) (setq font-lock-buffer-pos (point)) (insert input) - ;; Ensure buffer is fontified, keeping it - ;; compatible with Emacs < 24.4. - (if (fboundp 'font-lock-ensure) - (funcall 'font-lock-ensure) - (font-lock-default-fontify-buffer)) + (font-lock-ensure) (buffer-substring font-lock-buffer-pos (point-max)))) (replacement-length (length replacement))